* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Quick Links */
.top-bar {
    background-color: #276135;
    color: white;
    padding: 8px 0;
    position: relative;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-back {
    display: flex;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #f9c90e;
}

.back-arrow {
    margin-right: 6px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.back-link:hover .back-arrow {
    transform: translateX(-3px);
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.top-bar-links a:hover {
    color: #f9c90e;
}

/* Navigation Bar */
.main-header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
}

.university-name {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.university-name .main-title {
    font-size: 16px;
    text-transform: uppercase;
}

.university-name .subtitle {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-item>a {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item>a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
}

.nav-item.no-dropdown>a::after {
    display: none;
}

.header-home-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.header-home-link:hover .university-name {
    color: #276135;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f9f9f9;
}

.dropdown-toggle {
    cursor: default; 
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    margin-bottom: 50px;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    width: 100%;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(39, 97, 53, 0.4) 0%, rgba(39, 97, 53, 0.2) 50%, rgba(39, 97, 53, 0.4) 100%);
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 10;
    color: white;
    padding: 0 20px;
}

.highlight-badge {
    display: inline-block;
    background-color: rgba(39, 97, 53, 0.2);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid white;
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.slide-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 550px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 44px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slider-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 36px;
    }

    .slide-subtitle {
        font-size: 16px;
        max-width: 450px;
    }

    .slider-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 450px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .slider-nav {
        display: none;
    }
}

.btn-primary {
    display: inline-block;
    background-color: #276135;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #276135;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 425px) {
    .btn-primary {
        display: block;
        width: 50%;
        font-size: 14px;
        padding: 10px 15px; 
        text-align: center; 
        margin: 0 auto;
    }
}

@media (max-width: 375px) {
    .btn-primary {
        display: block;
        width: 50%;
        font-size: 12px;
        padding: 10px 15px; 
        text-align: center; 
        margin: 0 auto;
    }
}

@media (max-width: 320px) {
    .btn-primary {
        display: block;
        width: 60%;
        font-size: 12px;
        padding: 10px 15px; 
        text-align: center; 
        margin: 0 auto;
    }
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #1d4a2a;
    border: 2px solid #1d4a2a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: white;
    color: #276135;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    transform: translateY(-50%);
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    border: none;
}

.nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-spacer {
    height: 150px;
    width: 100%;
}

/* Introduction Section */
.intro-section {
    padding: 30px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: -110px;
    margin-bottom: -10px;
}

.intro-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro-image {
    order: 1;
}

.intro-content {
    order: 2;
    max-width: 600px;
}

.intro-content .icon {
    color: #276135;
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-right: 12px;
    display: inline-block;
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    color: #276135;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.intro-section .section-title {
    margin-top: 10px;
}

.intro-section .subtitle-2 {
    color: #276135;
    margin-bottom: 15px;
}

.accent-line {
    width: 50px;
    height: 3px;
    background-color: #276135;
    margin-top: 15px;
}

.section-text {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
    color: #555;
    margin-top: -10px;
    margin-bottom: 10px;
}

.section-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.link-item {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.link-item:hover .icon {
    transform: scale(1.2);
    color: #1d4a2a;
}

.link-item:hover .icon {
    transform: scale(1.2);
    color: #1d4a2a;
}

.link-item {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.link-item:hover .section-link {
    color: #1d4a2a;
    transform: translateX(5px);
}

.section-link {
    color: #276135;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.link-item:hover .link-accent {
    background-color: #276135;
    height: 2px;
}

.link-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    border: none;
    margin: 0;
    transition: background-color 0.3s ease, height 0.3s ease;
}

.section-link:hover {
    border-bottom-color: transparent;
}

.responsive-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* NLE Results Section */
.numbers-section {
    background-color: #276135;
    color: white;
    position: relative;
    overflow: hidden;
}

.numbers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 1%, transparent 2%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 1%, transparent 2%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%);
    background-size: 60px 60px, 80px 80px, 20px 20px;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.numbers-section::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 10px;
    background-image: radial-gradient(circle, #f9c90e 3px, transparent 4px);
    background-size: 15px 15px;
    background-repeat: repeat-x;
    z-index: 2;
}

.numbers-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.numbers-content {
    padding: 80px 50px;
    position: relative;
}

.subtitle-2 {
    color: #f9c90e;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.text-background-yellow {
    background-color: #f9c90e;
    display: inline;
}

.numbers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.accent-line-light {
    width: 50px;
    height: 3px;
    background-color: #f9c90e;
    margin: 20px 0 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    transition: opacity 0.3s ease;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #f9c90e;
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.stat-label strong {
    color: #f9c90e;
    font-weight: 700;
}

.numbers-image-container {
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.numbers-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.numbers-image.active {
    opacity: 1;
    visibility: visible;
}

.numbers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
    transform-origin: center;
}

.timeline-container {
    margin-top: 50px;
    position: relative;
    width: 100%;
}

.timeline-track {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.timeline-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #f9c90e;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(143, 229, 122, 0.5);
}

.timeline-dot:active {
    cursor: grabbing;
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 10px;
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.timeline-dot:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px rgba(143, 229, 122, 0.7);
}

@media (max-width: 1024px) {
    .stats-container {
        gap: 15px;
    }

    .stat-value {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 14px;
        line-height: 1.3;
    }

    .numbers-content {
        padding: 60px 30px;
    }

    .timeline-container {
        margin-top: 30px;
    }

    .numbers-title {
        font-size: 28px;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .numbers-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .stats-container {
        width: 100%;
    }

    .numbers-content {
        min-width: 0;
    }
}

@media (max-width: 992px) {
    .stats-container {
        gap: 10px;
    }

    .stat-value {
        font-size: 26px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* Why Choose Us? Section */
.transform-section {
    padding: 80px 0;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.transform-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 90%, rgba(39, 97, 53, 0.04) 0%, transparent 30%),
        radial-gradient(circle at 90% 10%, rgba(249, 201, 14, 0.04) 0%, transparent 30%);
    pointer-events: none;
}

.transform-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.transform-content {
    order: 2;
    max-width: 600px;
}

.transform-content .icon {
    color: #276135;
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-right: 12px;
    display: inline-block;
}

.transform-image {
    order: 1;
}

.transform-section .subtitle-2 {
    color: #276135;
    background-color: #f9c90e;
    display: inline;
}

.transform-section .section-title {
    margin-top: 12px;
}

/* Folder Cards */
.folder-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
}

.folder-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.folder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.folder-tab {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 25px;
    border-radius: 0 10px 0 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.card-green {
    background-color: #276135;
    color: white;
    position: relative;
    overflow: hidden;
}

.card-green::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.card-light {
    background-color: #f9c90e;
    color: #333;
    position: relative;
}

.card-light::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
    z-index: 0;
    pointer-events: none;
}

.card-dark {
    background-color: #f9c90e;
    color: white;
}

.folder-content {
    padding: 25px 20px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.folder-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.folder-stat-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 20px;
    flex-grow: 1;
}

.folder-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background-color: #f9c90e;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.folder-card-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.folder-card-link .fas {
    margin-left: 8px;
}

.folder-arrow {
    margin-left: 5px;
}

.folder-badge {
    background-color: rgba(39, 97, 53, 0.9);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.folder-image-wrapper {
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.folder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pazzibugan-image {
    object-position: center 30%;
}

.folder-card:hover .folder-image {
    transform: scale(1.05);
}

.folder-image-description {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.link-item {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.link-item:hover .icon {
    transform: scale(1.2);
    color: #1d4a2a;
}

.link-item:hover .icon {
    transform: scale(1.2);
    color: #1d4a2a;
}

.link-item {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.link-item:hover .section-link {
    color: #1d4a2a;
    transform: translateX(5px);
}

.section-link {
    color: #276135;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.link-item:hover .link-accent {
    background-color: #276135;
    height: 2px;
}

.link-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    border: none;
    margin: 0;
    transition: background-color 0.3s ease, height 0.3s ease;
}

.section-link:hover {
    border-bottom-color: transparent;
}

@media (max-width: 1024px) and (min-width: 993px) {
    .folder-cards-container {
        gap: 15px;
    }

    .folder-card {
        min-height: 250px;
    }

    .folder-stat-number {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .folder-stat-description {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .folder-content {
        padding: 20px 18px 18px;
    }

    .folder-image-wrapper {
        height: 160px;
    }

    .folder-image-description {
        font-size: 13px;
        line-height: 1.3;
    }

    .folder-card-link {
        padding: 10px 16px;
        font-size: 13px;
    }

    .folder-badge {
        font-size: 10px;
        padding: 3px 7px;
    }

    .transform-content {
        max-width: 470px;
    }

    .transform-section .container {
        gap: 30px;
    }
}

@media (max-width: 1100px) and (min-width: 993px) {
    .folder-stat-number {
        font-size: 34px;
    }

    .transform-section .container {
        width: 96%;
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    .pazzibugan-image {
        object-position: center 10% !important;
    }

    .folder-card .folder-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .pazzibugan-image {
        object-position: center 10% !important;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: #276135;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.intro-section::before,
.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 1%, transparent 2%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.08) 1%, transparent 2%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%);
    background-size: 60px 60px, 80px 80px, 20px 20px;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Slider */
.testimonial-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    order: 2;
}

.testimonial-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.testimonial-image.active {
    opacity: 1;
    background-position: top -30px center;
}

.testimonial-section .accent-line {
    background-color: #f9c90e;
}

.testimonial-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}

.testimonial-navigation .nav-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    margin-top: -20px;
}

.testimonial-navigation .nav-button:hover {
    background-color: white;
    color: #276135;
}

.testimonial-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

.testimonial-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.testimonial-content-wrapper {
    max-width: 90%;
}

.testimonial-slider {
    position: relative;
    margin: 30px 0;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.testimonial-text {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
    color: #fff;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: #f9c90e;
    opacity: 0.3;
    line-height: 1;
}

@media (max-width: 425px) {
    .testimonial-text {
        padding-right: 25px;
    }
}

/*
.testimonial-text::after {
    content: "\201D";  
    position: absolute;
    right: 245px;
    bottom: -40px;
    font-size: 60px;
    color: #f9c90e;
    opacity: 0.3;
    line-height: 1;
}
*/

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
}

.testimonial-author strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #f9c90e;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-navigation {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .testimonial-text::before {
        font-size: 50px;
        top: -8px;
    }

    .testimonial-author strong {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .testimonial-author span {
        font-size: 13px;
    }

    .testimonial-content-wrapper {
        max-width: 95%;
    }

    .testimonial-navigation .nav-button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .testimonial-slider {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .testimonial-author {
        margin-bottom: 15px;
    }

    .testimonial-navigation {
        margin-top: -55px;
    }

    .testimonial-image-container {
        height: 320px;
    }

    .testimonial-slider {
        min-height: 200px;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-text {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .testimonial-slider {
        min-height: 180px;
    }

    .testimonial-navigation {
        margin-top: 5px;
    }

    .testimonial-author {
        margin-bottom: 10px;
    }
}

.nav-button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #276135;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.nav-button:hover {
    background-color: #276135;
    color: white;
}

.testimonial-navigation .nav-button i {
    font-size: 16px;
}

.intro-section::before,
.transform-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 5% 10%, rgba(39, 97, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 95% 85%, rgba(249, 201, 14, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        linear-gradient(rgba(39, 97, 53, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 97, 53, 0.5) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.intro-section::before,
.numbers-section::before,
.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 1%, transparent 2%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.12) 1%, transparent 2%),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%);
    background-size: 60px 60px, 80px 80px, 20px 20px;
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
}

.intro-section::after,
.transform-section::after {
    content: "";
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 150px;
    height: 150px;
    background:
        linear-gradient(135deg, transparent 40%, rgba(39, 97, 53, 0.05) 100%);
    border-radius: 50%;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.intro-section::after {
    top: 40px;
    left: 40px;
    right: auto;
    bottom: auto;
    background:
        linear-gradient(315deg, transparent 40%, rgba(249, 201, 14, 0.05) 100%);
}

.accent-line {
    background: linear-gradient(to right, #276135, #276135 70%, rgba(39, 97, 53, 0.7));
}

.accent-line-light {
    background: linear-gradient(to right, #f9c90e, #f9c90e 70%, rgba(249, 201, 14, 0.7));
}

.hero-card,
.folder-card {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(39, 97, 53, 0.1),
        0 1px 3px rgba(249, 201, 14, 0.05);
    transition: all 0.3s ease;
}

.folder-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(39, 97, 53, 0.15),
        0 2px 4px rgba(249, 201, 14, 0.1);
}

.testimonial-text::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: #f9c90e;
    opacity: 0.3;
    line-height: 1;
}

/* Vision-Mission Section */
.vision-mission-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.vision-mission-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 5% 10%, rgba(39, 97, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 95% 85%, rgba(249, 201, 14, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.vision-mission-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.vision-mission-cards {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-mission-content {
    order: 2;
    max-width: 600px;
}

.vision-mission-header {
    text-align: left;
    max-width: 100%;
    margin-bottom: 25px;
}

.vision-mission-header .section-header {
    margin-top: 100px;
    margin-bottom: 15px;
    text-align: left;
}

.vision-mission-content .section-text {
    margin-top: 5px;
}

.vision-mission-section .subtitle-2 {
    color: #276135;
}

.vision-mission-header .section-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 32px;
}

.vision-mission-header .accent-line {
    margin: 15px auto;
    width: 60px;
    margin-left: 0;
}

.vision-card,
.mission-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    z-index: 3;
}

.vision-card {
    border-top: 5px solid #276135;
}

.mission-card {
    border-top: 5px solid #f9c90e;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.vision-card .card-icon,
.mission-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-bottom: 0;
    font-size: 18px;
}

.vision-card .card-icon {
    background-color: rgba(39, 97, 53, 0.1);
    color: #276135;
}

.mission-card .card-icon {
    background-color: rgba(249, 201, 14, 0.1);
    color: #f9c90e;
}

.card-header .card-title {
    margin: 0;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #333;
}

.card-accent-line {
    width: 40px;
    height: 3px;
    margin-bottom: 15px;
}

.vision-card .card-accent-line {
    background-color: #276135;
}

.mission-card .card-accent-line {
    background-color: #f9c90e;
}

.card-text {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    color: #444;
    margin-bottom: 20px;
}

.mission-list {
    margin-top: 10px;
    padding-left: 20px;
}

.mission-list li {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
    color: #444;
    margin-bottom: 10px;
    position: relative;
    margin-bottom: 8px;
}

.mission-list li::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f9c90e;
}

.vision-mission-content .icon {
    color: #276135;
    font-size: 16px;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.vision-mission-content .link-item:hover .icon {
    transform: scale(1.2);
}

.vision-mission-content .link-item {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

/* FAQs Section */
.faqs-section {
    background-color: #fff;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faqs-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 95% 15%, rgba(249, 201, 14, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 5% 150%, rgba(39, 97, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faqs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.faqs-content {
    max-width: 600px;
}

.faqs-section .section-title {
    color: #276135;
    margin-top: 12px;
}

.faqs-section .section-text {
    color: #555;
    margin-bottom: 30px;
}

.faqs-section .subtitle-2 {
    color: #276135;
    background-color: #f9c90e;
    display: inline;
}

.faqs-section .section-text a.contact-link {
    color: #276135;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faqs-section .section-text a.contact-link:hover {
    color: #1d4a2a;
}

.faqs-section .section-links .icon {
    color: #276135;
    margin-right: 12px;
}

.faqs-section .section-link {
    color: #276135;
}

.faqs-section .link-item:hover .section-link {
    color: #276135;
}

.faqs-section .link-item:hover .link-accent {
    background-color: #276135;
}

.faqs-section .link-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    border: none;
    margin: 0;
    transition: background-color 0.3s ease, height 0.3s ease;
}

/* Accordion Styles */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.accordion-item {
    background-color: #276135;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 0;
}

.accordion-item:hover {
    background-color: #1d4a2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.accordion-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    border-left-color: #f9c90e;
    background-color: rgba(255, 255, 255, 0.15);
}

.accordion-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding-right: 20px;
    color: #fff;
}

.accordion-icon {
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(249, 201, 14, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-icon i {
    color: #f9c90e;
    font-size: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
}

.accordion-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.accordion-item.active .accordion-icon {
    background-color: #f9c90e;
}

.accordion-item.active .accordion-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .accordion-icon .fa-minus {
    opacity: 1;
    transform: rotate(0);
    color: #276135;
}

.accordion-content {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 20px 20px;
}

.accordion-content p {
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    text-align: justify;
    line-height: 1.7;
    color: #555;
    margin: 0;
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .faqs-section {
        margin-top: -30px;
    }

    .vision-mission-section {
        padding-bottom: 50px;
    }

    .vision-mission-section+.faqs-section {
        padding-top: 60px;
    }

    .accordion-container {
        margin-top: 30px;
    }

    .accordion-item {
        margin-bottom: 12px;
    }

    .faqs-content {
        margin-bottom: 20px;
    }

    .faqs-container {
        align-items: flex-start;
    }
}

@media (max-width: 992px) {
    .faqs-section {
        margin-top: -20px;
    }
}

@media (max-width: 768px) {
    .accordion-container {
        margin-top: -15px;
    }

    .faqs-section {
        padding: 50px 0 40px;
    }

    .accordion-item {
        margin-bottom: 8px;
    }

    .faqs-section .section-text {
        margin-bottom: 20px;
    }

    .faqs-container {
        gap: 30px;
    }
}

/* Further adjustments for smaller screens */
@media (max-width: 576px) {
    .accordion-container {
        margin-top: 0;
    }

    .faqs-section {
        padding: 40px 0 30px;
        /* Even more compact on mobile */
    }
}

/* Responsive styles for FAQs section */
@media (max-width: 992px) {
    .faqs-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faqs-content {
        max-width: 100%;
    }

    .accordion-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faqs-section {
        padding: 60px 0;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faqs-section {
        padding: 40px 0;
    }

    .accordion-header {
        padding: 15px;
    }

    .accordion-title {
        font-size: 14px;
    }

    .accordion-icon {
        min-width: 20px;
        height: 20px;
    }

    .accordion-icon i {
        font-size: 10px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 15px 15px;
    }

    .accordion-content p {
        font-size: 13px;
    }
}

/* Responsiveness */
@media (max-width: 992px) {
    .main-nav {
        gap: 15px;
    }

    .nav-item>a {
        font-size: 14px;
    }

    .intro-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-content {
        max-width: 100%;
    }

    .transform-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transform-content {
        max-width: 100%;
        order: 2;
    }

    .transform-image {
        order: 1;
    }

    .numbers-container {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 0;
    }

    .numbers-image-container {
        height: 300px;
        order: 2;
    }

    .numbers-content {
        padding: 50px 30px;
        order: 1;
    }

    .numbers-image {
        height: 300px;
    }

    .stat-value {
        font-size: 32px;
    }

    .timeline-year {
        font-size: 12px;
    }

    .folder-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-image-container {
        height: 400px;
        order: 2;
    }

    .testimonial-content-container {
        order: 1;
    }

    .testimonial-content-wrapper {
        max-width: 100%;
    }

    .vision-mission-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-mission-cards {
        order: 1;
    }

    .vision-mission-content {
        order: 2;
        max-width: 100%;
    }

    .vision-mission-header {
        margin-top: -120px;
        text-align: center;
    }

    .vision-mission-header .accent-line {
        margin: 15px auto;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-card,
    .mission-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 450px;
    }

    .hero-card {
        width: 95%;
        padding: 30px;
        margin: 0 auto -60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .testimonial-image-container {
        height: 350px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .folder-cards-container {
        grid-template-columns: 1fr;
    }

    .folder-image-wrapper {
        height: 200px;
    }

    .testimonial-navigation {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .vision-mission-section {
        padding: 60px 0;
    }

    .vision-mission-header {
        margin-bottom: 30px;
    }

    .vision-card,
    .mission-card {
        padding: 20px;
    }

    .card-title {
        font-size: 22px;
    }

    .enroll-now-button {
        padding: 12px 25px;
        font-size: 15px;
    }

    .tuition-popup {
        font-size: 14px;
        padding: 8px 20px;
        top: 15px;
    }
}

@media (max-width: 576px) {
    .back-link {
        font-size: 13px;
    }

    .back-arrow {
        font-size: 13px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stat-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .timeline-labels {
        display: none;
    }

    .vision-mission-section {
        padding: 50px 0;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 14px;
    }

    .mission-list li {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .hero {
        height: 350px;
    }

    .hero-card {
        width: 95%;
        padding: 15px 12px;
        margin: 0 auto -25px;
    }

    .hero-title {
        font-size: 18px;
    }

    .hero-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-link {
        font-size: 13px;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 101;
    margin-left: auto;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.mobile-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 102;
    color: #333;
}

.testimonial-section+.vision-mission-section {
    margin-top: -20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 20px;
}

@media (max-width: 992px) {
    .hero-card {
        width: 90%;
        padding: 35px 40px;
        margin: 0 auto -80px;
    }

    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 450px;
    }

    .hero-card {
        width: 95%;
        padding: 30px;
        margin: 0 auto -60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 380px;
    }

    .hero-card {
        width: 92%;
        padding: 20px 15px;
        margin: 0 auto -30px;
    }

    .hero-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-link {
        font-size: 14px;
    }

    .hero-spacer {
        height: 130px;
    }
}

@media only screen and (max-width: 992px) {
    .header-inner {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 0 !important;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-close {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        color: #000;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 100;
        padding: 0;
        opacity: 0;
        visibility: hidden;
    }

    .main-nav.active {
        max-height: 100vh;
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item>a {
        padding: 15px 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        color: #000;
    }

    .nav-item>a::after {
        margin-left: auto !important;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
        border-top-color: #000;
    }

    .nav-item.active>a::after {
        transform: rotate(180deg);
    }

    .nav-item:hover {
        background-color: #f5f5f5;
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        background-color: #f5f5f5;
    }

    .nav-item.active .dropdown {
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        padding-left: 40px;
        border-color: rgba(0, 0, 0, 0.05);
    }

    .dropdown-item a {
        color: #000;
        opacity: 1;
    }

    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}